home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / PROGNG_C / CSTUFF.LZH / CSTUFF.DOC < prev    next >
Text File  |  1986-09-23  |  2KB  |  51 lines

  1. NOTES ON CSTUFF.ARC FILES:
  2.  
  3. **** UPDATED 9/23/86 ****************************************
  4.  
  5. This archive contains some routines that might be helpful when
  6. using Microsoft C Compiler or Lattice C, although some
  7. modifications may be needed for the latter (or other C
  8. compilers). Contained in the archive are the following:
  9.  
  10. 1. POKE.ASM: A routine to write directly to any PC memory
  11. location. Written in assembler - use MASM.
  12.  
  13. 2. PEEK.ASM: A routine to get the contents of any PC memory
  14. location. Written in assembler - use MASM.
  15.  
  16. 3. FWRITE.ASM: A routine to write directly to the screen buffer
  17. on the IBM PC or compatibles. Can be used with either monochrome
  18. or color graphics video adapters (the routine determines which
  19. one is in use). Based on the FastWrite procedure submitted to the
  20. Borland SIG on CompuServe by Bryan Foley, modified by Mike Most.
  21. Works Great!!!!!! Use MASM.
  22.  
  23. 4. CURSOR.C: Routines to turn the cursor on and off and set the
  24. cursor size by lines. Written in C.
  25.  
  26. 5. CPOS.ASM: Routine to position the cursor anywhere on the text
  27. screen. Written in assembler - Use MASM.
  28.  
  29. 6. CAPLOCK.C: Routine to turn the caps lock on or off by software
  30. control Written in C, uses PEEK and POKE functions described
  31. above.
  32.  
  33. 7. NUMLOCK.C: Routine to turn the num lock on or off by software
  34. control. Written in C, uses PEEK and POKE functions.
  35.  
  36. 8. CLS.ASM: Routine to clear the screen. Written in assembler -
  37. use MASM.
  38.  
  39. 9. GETCURS.C: Gets the current position of the cursor on the text
  40. screen.
  41.  
  42. 10. CLREOL.C: Clears the screen to the end of the current line.
  43.  
  44.  
  45. Enjoy!!!
  46.  
  47.                    Michael D. Most
  48.                    Marina Del Rey, CA
  49.                    Sept. 7, 1986
  50.  
  51.